wxComboBox
Table of Contents

Creation parameters:


  • proc clear_combo( atom combo )   
  • func combobox_count( atom combo )   
  • proc delete_combo_item( atom combo, integer item )   
  • func find_combo_string( atom combo, sequence string )   
  • func get_combo_item_string( atom combo, integer item )   
  • func get_combo_string( atom combo )   
  • proc set_combo_value( atom combo, sequence text )     
     
    Parent Topics:
  • Classes
  • Controls
  • wxChoice
  • wxControlWithItems

    wxComboBox
    Table of Contents

    [proc]
    clear_combo
    ( atom combo )

    Category: wxComboBox

    Clears the data inside of a wxComboBox specified by combo.

    See Also: combobox_count, delete_combo_item, find_combo_string, get_combo_item_string, get_combo_string, set_combo_value


    wxComboBox
    Table of Contents

    [func]
    combobox_count
    ( atom combo )

    Category: wxComboBox

    Used to count the number of items in a wxChoice.

    See Also: clear_combo, delete_combo_item, find_combo_string, get_combo_item_string, get_combo_string, set_combo_value


    wxComboBox
    Table of Contents

    [proc]
    delete_combo_item
    ( atom combo, integer item )

    Category: wxComboBox

    This goes to a ComboBox specified by combo and deletes the number in the box corresponding to item. It starts at the top with 0 being the first on the drop-down list.

    See Also: clear_combo, combobox_count, find_combo_string, get_combo_item_string, get_combo_string, set_combo_value


    wxComboBox
    Table of Contents

    [func]
    find_combo_string
    ( atom combo, sequence string )

    Category: wxComboBox

    Returns the item number of the item in the ComboBox with the specified string. The top item is 0 instead of 1, so be sure to take that into account.

    See Also: clear_combo, combobox_count, delete_combo_item, get_combo_item_string, get_combo_string, set_combo_value


    wxComboBox
    Table of Contents

    [func]
    get_combo_item_string
    ( atom combo, integer item )

    Category: wxComboBox

    Returns the string for item.

    See Also: clear_combo, combobox_count, delete_combo_item, find_combo_string, get_combo_string, set_combo_value


    wxComboBox
    Table of Contents

    [func]
    get_combo_string
    ( atom combo )

    Category: wxComboBox

    Returns the string in the edit box of the combo box.

    See Also: clear_combo, combobox_count, delete_combo_item, find_combo_string, get_combo_item_string, set_combo_value


    wxComboBox
    Table of Contents

    [proc]
    set_combo_value
    ( atom combo, sequence text )

    Category: wxComboBox

    This sets the text of the box in a wxComboBox to text.

    See Also: clear_combo, combobox_count, delete_combo_item, find_combo_string, get_combo_item_string, get_combo_string